home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dskut / hdinfo10.zip / CARDFILE.DOC < prev    next >
Text File  |  1987-11-11  |  5KB  |  85 lines

  1.           CARDFILE
  2.           Written by Jeff Prosise                        From Vol. 6, #18
  3.           (C) Ziff Davis Publishing (PC Magazine)        October 27, 1987
  4.           ___________________________________________________________________
  5.  
  6.           Purpose:  Combines a database of names, addresses, phone numbers,
  7.                     and memo-IDs with a Hayes-compatible auto-dialer.
  8.  
  9.           Format:   CARDFILE [d:] [filespec]
  10.  
  11.           Remarks:  CARDFILE is normally loaded with a specific database
  12.                     (filespec) by being listed as a line in your AUTOEXEC.BAT
  13.                     file.  You can switch to another database by repeating the
  14.                     command with a different filespec at the DOS prompt.  The
  15.                     Alt-Right Shift key combination pops up the CARDFILE
  16.                     window, and Esc returns you to your application.
  17.                     Within the window, the function keys are assigned:
  18.  
  19.                          F1 - Begin/save a new or edited card
  20.                          F2 - Edit the card currently displayed
  21.                          F3 - Delete the card currently displayed
  22.                          F4 - Search all cards for a text string
  23.                          F5 - Save datafile to a disk
  24.                          F6 - Dial the phone number currently displayed
  25.  
  26.                     All card entry and editing is doen in overstrike mode.  The
  27.                     Backspace key deletes the previous character and the four
  28.                     cursor keys can position the cursor anywhere in the record
  29.                     area.  Enter moves the cursor to the start of the next
  30.                     line.  You can page through all of the cards with PgUp,
  31.                     PgDn, and Enter keys.  The Home and End keys jump to the
  32.                     first or last card, respectively.
  33.  
  34.                     To search a database, press F4 and enter a text string. 
  35.                     Pressing Enter resumes the search (which is case-sensitive)
  36.                     after a match; Esc cancels the search.  An alternate way to
  37.                     find a name quickly is to press Alt and a letter key.  To
  38.                     find "Smith," for example, hit Alt-S, then use PgDn or
  39.                     Enter to skip past "Sagamore" and "Siddhartha."
  40.  
  41.                     When used with Hayes-compatiblr modems, F6 dials the number
  42.                     currently displayed.  At the prompt, pick up the phone and
  43.                     press the Spacebar to break the modem connection.  The
  44.                     CARDFILE auto-dialer ignores all nonnumeric characters
  45.                     except the comma, which inserts the pause sometimes needed
  46.                     to access an outside line.
  47.  
  48.                     Because CARDFILE is a memory-resident program, it must
  49.                     assume rather than change the modem parameters.  By
  50.                     default, CARDFILE is initially configured for a 1200-baud
  51.                     modem conneccted to COM1.  Using DEBUG you can change the
  52.                     value at :0182h from 0 to 1 to change from COM1 to COM2, to
  53.                     2 for COM3, etc.  Similarly, to change to a different baud
  54.                     (bps) rate, change the value at :0184h from the default
  55.                     83h, as follows:
  56.  
  57.                           300 baud      43h
  58.                          1200 baud      83h
  59.                          2400 baud      A3h
  60.                          4800 baud      C3h
  61.                          9600 baud      E3h
  62.  
  63.                     The "ATDT" (dial) and "ATH0" (hangup) strings are at
  64.                     addresses :0185h and :0184h, respectively.  While they can
  65.                     be changed (e.g., substituting a "P", ASCII 80 for the "T"
  66.                     in the dialing command), note that each sequence must be 4
  67.                     bytes long.  The dial string mist be delimited by a zero
  68.                     byte, and the hangup string must end with 0Dh and 00.
  69.  
  70.                     To save memory, the card capacity may be lowered from the
  71.                     default 255 (FFh) at :0169h.  Each record takes 192 bytes.
  72.                     And if the Alt-Right Shift "hot key" conflicts with other
  73.                     software, change the default value 09 at address :036A to
  74.                     a combination of the following:
  75.  
  76.                          Right Shift    1
  77.                          Left Shift     2
  78.                          Ctrl           4
  79.                          Alt            8
  80.  
  81.                     NOTE: While CARDFILE will operate under DOS 2.x, its
  82.                     critical error handler is only effective with DOS 3.x.
  83.  
  84.                     
  85.